how to open new form on button click in c# xamarin

80

how to open new form on button click in c# xamarin -

private void button1Click(object sender, EventArgs e)
{            
     App.Current.MainPage = new settings();
}

Comments

Submit
0 Comments